header {
    height: 300px; 
}

header img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.header-text {
    text-align: center;
    color: white;
    padding: 20px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 25px;
}

.navbar {
    display: flex;
    align-items: center;
    max-width: 1450px;
    background-color: lightskyblue;
    margin: -9px;
    justify-content: space-between;
    padding-right: 150px;
    height: 100px;
}

.navbar .hamburger-btn {
    display: none;
    color: #fff;
    cursor: auto;
    font-size: 1.5rem;
}

.navbar .logo {
    gap: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: Georgia;
}

.navbar .logo img {
    width: 40px;
    border-radius: 50%;
    margin-left: 20px;
}

.navbar .logo h2 {
    color: #fff;
    font-weight: 600;
    font-size: 1.7rem;
    font-family: Georgia;
}

.navbar .links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
    font-family: Georgia;
}

.navbar .close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    display: none;
    color: #000;
    cursor: pointer;
}

.navbar .links a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.1s ease;
}

.navbar .links a:hover {
    color: #008080;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: rgb(60, 60, 60);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.about-section {
    background-color: rgb(130, 222, 167);
    padding: 40px 0;
}

.about-content {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: Georgia;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: Georgia;
}

.about-content ul {
    margin-bottom: 20px;
}

.about-content ul li {
    list-style-type: disc;
    margin-left: 20px;
    font-family: Georgia;
}

.about-image {
    width: 35%;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-left: 800px;
    margin-top: -400px;
}


footer {
    background-color: lightskyblue;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    font-family: Georgia;
}

.footer-content h3 {
    margin: 0;
    font-family: Georgia;
}

.socials {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.socials li {
    display: inline-block;
    margin-left: 10px;
}

.socials li:first-child {
    margin-left: 0;
}

.socials li a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.socials li a img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.navbar .links a {
    display: inline-flex;
    margin: 20px 0;
    font-size: 1.2rem;
    color: white;
    animation: fadeIn 0.5s ease forwards; 
    opacity: 0; 
}
.header-text p {
    font-size: 1.2rem;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .header-text p {
        font-size: 1rem; 
        line-height: 1.3; 
    }
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto; 
        padding-right: 0; 
    }
    .navbar .hamburger-btn {
        display: block; 
    }

    .navbar .logo {
        margin-top: 10px; 
        margin-bottom: 10px; 
        text-align: center; 
    }

    .navbar .links {
        display: none; 
        flex-direction: column; 
        width: 100%; 
        text-align: center; 
    }

    .navbar .links a {
        margin: 10px 0; 
    }

    .navbar .close-btn {
        display: block; 
        position: static; 
    }

    
    .navbar .hamburger-btn.clicked ~ .links {
        display: flex;
    }
}

.navbar .links.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: lightskyblue;
    position: absolute;
    top: 100px; 
    left: 0;
    width: 100%;
    z-index: 999; 
}
.links {
    display: none;
}

.links.active {
    display: block; 
}
